home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Chat & Communication / Digsby build 37 / digsby_setup.exe / lib / cProfile.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-13  |  5KB  |  171 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.5)
  3.  
  4. __all__ = [
  5.     'run',
  6.     'runctx',
  7.     'help',
  8.     'Profile']
  9. import _lsprof
  10.  
  11. def run(statement, filename = None, sort = -1):
  12.     prof = Profile()
  13.     result = None
  14.     
  15.     try:
  16.         prof = prof.run(statement)
  17.     except SystemExit:
  18.         pass
  19.     finally:
  20.         if filename is not None:
  21.             prof.dump_stats(filename)
  22.         else:
  23.             result = prof.print_stats(sort)
  24.  
  25.     return result
  26.  
  27.  
  28. def runctx(statement, globals, locals, filename = None):
  29.     prof = Profile()
  30.     result = None
  31.     
  32.     try:
  33.         prof = prof.runctx(statement, globals, locals)
  34.     except SystemExit:
  35.         pass
  36.     finally:
  37.         if filename is not None:
  38.             prof.dump_stats(filename)
  39.         else:
  40.             result = prof.print_stats()
  41.  
  42.     return result
  43.  
  44.  
  45. def help():
  46.     print 'Documentation for the profile/cProfile modules can be found '
  47.     print "in the Python Library Reference, section 'The Python Profiler'."
  48.  
  49.  
  50. class Profile(_lsprof.Profiler):
  51.     
  52.     def print_stats(self, sort = -1):
  53.         import pstats as pstats
  54.         pstats.Stats(self).strip_dirs().sort_stats(sort).print_stats()
  55.  
  56.     
  57.     def dump_stats(self, file):
  58.         import marshal as marshal
  59.         f = open(file, 'wb')
  60.         self.create_stats()
  61.         marshal.dump(self.stats, f)
  62.         f.close()
  63.  
  64.     
  65.     def create_stats(self):
  66.         self.disable()
  67.         self.snapshot_stats()
  68.  
  69.     
  70.     def snapshot_stats(self):
  71.         entries = self.getstats()
  72.         self.stats = { }
  73.         callersdicts = { }
  74.         for entry in entries:
  75.             func = label(entry.code)
  76.             nc = entry.callcount
  77.             cc = nc - entry.reccallcount
  78.             tt = entry.inlinetime
  79.             ct = entry.totaltime
  80.             callers = { }
  81.             callersdicts[id(entry.code)] = callers
  82.             self.stats[func] = (cc, nc, tt, ct, callers)
  83.         
  84.         for entry in entries:
  85.             if entry.calls:
  86.                 func = label(entry.code)
  87.                 for subentry in entry.calls:
  88.                     
  89.                     try:
  90.                         callers = callersdicts[id(subentry.code)]
  91.                     except KeyError:
  92.                         continue
  93.  
  94.                     nc = subentry.callcount
  95.                     cc = nc - subentry.reccallcount
  96.                     tt = subentry.inlinetime
  97.                     ct = subentry.totaltime
  98.                     if func in callers:
  99.                         prev = callers[func]
  100.                         nc += prev[0]
  101.                         cc += prev[1]
  102.                         tt += prev[2]
  103.                         ct += prev[3]
  104.                     
  105.                     callers[func] = (nc, cc, tt, ct)
  106.                 
  107.         
  108.  
  109.     
  110.     def run(self, cmd):
  111.         import __main__ as __main__
  112.         dict = __main__.__dict__
  113.         return self.runctx(cmd, dict, dict)
  114.  
  115.     
  116.     def runctx(self, cmd, globals, locals):
  117.         self.enable()
  118.         
  119.         try:
  120.             exec cmd in globals, locals
  121.         finally:
  122.             self.disable()
  123.  
  124.         return self
  125.  
  126.     
  127.     def runcall(self, func, *args, **kw):
  128.         self.enable()
  129.         
  130.         try:
  131.             return func(*args, **kw)
  132.         finally:
  133.             self.disable()
  134.  
  135.  
  136.  
  137.  
  138. def label(code):
  139.     if isinstance(code, str):
  140.         return ('~', 0, code)
  141.     else:
  142.         return (code.co_filename, code.co_firstlineno, code.co_name)
  143.  
  144.  
  145. def main():
  146.     import os as os
  147.     import sys as sys
  148.     OptionParser = OptionParser
  149.     import optparse
  150.     usage = 'cProfile.py [-o output_file_path] [-s sort] scriptfile [arg] ...'
  151.     parser = OptionParser(usage = usage)
  152.     parser.allow_interspersed_args = False
  153.     parser.add_option('-o', '--outfile', dest = 'outfile', help = 'Save stats to <outfile>', default = None)
  154.     parser.add_option('-s', '--sort', dest = 'sort', help = 'Sort order when printing to stdout, based on pstats.Stats class', default = -1)
  155.     if not sys.argv[1:]:
  156.         parser.print_usage()
  157.         sys.exit(2)
  158.     
  159.     (options, args) = parser.parse_args()
  160.     sys.argv[:] = args
  161.     if len(sys.argv) > 0:
  162.         sys.path.insert(0, os.path.dirname(sys.argv[0]))
  163.         run('execfile(%r)' % (sys.argv[0],), options.outfile, options.sort)
  164.     else:
  165.         parser.print_usage()
  166.     return parser
  167.  
  168. if __name__ == '__main__':
  169.     main()
  170.  
  171.